Putting multiple statements on a single line lowers the code readability and makes debugging the code more complex.
MOVE '1' TO OCTET-1 MOVE '2' TO OCTET-2 *> Noncompliant
Write one statement per line to improve readability.
MOVE '1' TO OCTET-1
MOVE '2' TO OCTET-2
Exceptions
The rule ignores control flow statements with a single nested statement.
IF x > 0 THEN DISPLAY "positive". *> Compliant by exception